home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00277_D4-animation.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  547 b   |  24 lines

  1. global ImageNum, HPos, VPos
  2.  
  3. on new me
  4.   puppetSound("Landelyd")
  5.   set ImageNum to 393
  6.   set HPos to the mouseH
  7.   set VPos to the mouseV
  8.   set the locH of sprite 74 to HPos
  9.   set the locV of sprite 74 to VPos
  10.   set the locH of sprite 99 to 780
  11. end
  12.  
  13. on exitFrame
  14.   set ImageNum to ImageNum + 1
  15.   if ImageNum > 408 then
  16.     go(#next)
  17.   end if
  18.   set the locH of sprite 74 to HPos
  19.   set the locV of sprite 74 to VPos - ((64 - ((ImageNum - 400) * (ImageNum - 400))) * 3)
  20.   set the memberNum of sprite 74 to ImageNum
  21.   updateStage()
  22.   go(the frame)
  23. end
  24.